7db4838cf4558a9fb44da902f7ffe0f48c408cc8,ttt-ttpe/src/main/java/com/skynav/ttpe/app/Presenter.java,Presenter,getISDOutputStream,#URI#File[]#,672
Before Change
return null;
}
if (d.exists()) {
String outputFileName = MessageFormat.format(outputPatternISD, ++outputFileSequenceISD);
File outputFile = new File(d, outputFileName).getCanonicalFile();
if (retOutputFile != null)
retOutputFile[0] = outputFile;
After Change
return null;
}
if (d.exists()) {
String outputFileName = outputPatternISDFormatter.format(new Object[]{Integer.valueOf(++outputFileSequenceISD)});
File outputFile = new File(d, outputFileName).getCanonicalFile();
if (retOutputFile != null)
retOutputFile[0] = outputFile;